home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 2
/
Gold Medal Software Volume 2 (Gold Medal) (1994).iso
/
utils
/
getclr10.arj
/
DEMO.BAT
next >
Wrap
DOS Batch File
|
1994-01-10
|
1KB
|
36 lines
@echo off
call GETCOLOR.BAT
rem * * * Substitute your batch file between lines with asterisks * * * * *
echo
cls
echo
echo ╔═════════════════════════════════════════════════════════╗
echo ║ ║
echo ║ Demonstration of GET COLOR ║
echo ║ Version 1.0 ║
echo ║ January 10, 1994 ║
echo ║ ║
echo ║ Your original screen colors have been captured. ║
echo ║ ║
echo ║ This text is bright cyan on blue. ║
echo ║ ║
echo ║ Press any key to finish demo and reset your colors. ║
echo ║ ║
echo ╚═════════════════════════════════════════════════════════╝
echo f
pause >nul
rem * * * Substitute your batch file between lines with asterisks * * * * *
rem You must restore boldattr before foregrnd and backgrnd because setting
rem bold attribute to zero also resets colors to normal (white on black).
echo %boldattr%m
echo %foregrnd%m
echo %backgrnd%m
set boldattr=
set foregrnd=
set backgrnd=
cls